home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / SUPERPD.PAK / TABSTOP.CPP < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  50 lines

  1. // tabstop.cpp : implementation of the CPadView class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #include "stdafx.h"
  14. #include "superpad.h"
  15. #include "tabstop.h"
  16.  
  17. #ifdef _DEBUG
  18. #undef THIS_FILE
  19. static char BASED_CODE THIS_FILE[] = __FILE__;
  20. #endif
  21.  
  22. /////////////////////////////////////////////////////////////////////////////
  23. // CSetTabStops dialog
  24.  
  25. IMPLEMENT_DYNAMIC(CSetTabStops, CDialog)
  26.  
  27. CSetTabStops::CSetTabStops(CWnd* pParent /* = NULL */)
  28.     : CDialog(CSetTabStops::IDD, pParent)
  29. {
  30.     //{{AFX_DATA_INIT(CSetTabStops)
  31.     //}}AFX_DATA_INIT
  32. }
  33.  
  34. void CSetTabStops::DoDataExchange(CDataExchange* pDX)
  35. {
  36.     CDialog::DoDataExchange(pDX);
  37.     //{{AFX_DATA_MAP(CSetTabStops)
  38.     DDX_Text(pDX, IDC_EDIT_TABS, m_nTabStops);
  39.     DDV_MinMaxUInt(pDX, m_nTabStops, 1, 16);
  40.     //}}AFX_DATA_MAP
  41. }
  42.  
  43. BEGIN_MESSAGE_MAP(CSetTabStops, CDialog)
  44.     //{{AFX_MSG_MAP(CSetTabStops)
  45.     //}}AFX_MSG_MAP
  46. END_MESSAGE_MAP()
  47.  
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CSetTabStops message handlers
  50.